home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d6 / icp51.arc / INSTALL.BAT next >
DOS Batch File  |  1991-03-27  |  2KB  |  84 lines

  1. @echo off
  2. cls
  3.  
  4. if "%1==" goto hlpinst
  5. if "%2==" goto hlpinst
  6.  
  7. :loop1
  8. cls
  9. echo Insert Program Disk in drive %1
  10. echo Files will be copied to %2\ICP
  11. echo .
  12. pause
  13. if exist unpack.exe goto ok1
  14.  
  15. cls
  16. echo Wrong disk or missing files...
  17. echo INSTALLATION ABORTED!
  18. goto end
  19.  
  20. :ok1
  21. cls
  22. echo Copying the ICP System files to Drive %2\ICP
  23. %2
  24. cd\
  25. md\ICP
  26. cd\ICP
  27. if exist inven.dbf goto ok2
  28. %1unpack
  29. goto ok3
  30.  
  31. :ok3
  32. cls
  33. echo ICP System files successfully copied.
  34. echo .
  35. echo WARNING! The ICP will not run unless certain system parameters are
  36. echo properly established. Consult the "readme.doc" file for information 
  37. echo concerning this process. 
  38. echo .
  39. echo *********************************************************************
  40. echo TO START THE ICP PROGRAM, BE SURE YOU ARE IN THE DIRECTORY IN WHICH
  41. echo THE ICP FILES WERE INSTALLED AND TYPE "START".
  42. echo *********************************************************************
  43. echo .
  44. echo You may print document files by typing the command "print <file.ext>".
  45. echo For example, to print the readme.doc file, type "print readme.doc " 
  46. echo and hit the ENTER key.
  47. echo .
  48. echo You may view document files by entering the command "view <file.ext>".
  49. echo For example, to view the readme.doc file, type "view readme.doc" and 
  50. echo hit the ENTER key.
  51. echo .
  52. echo Thank you!
  53. echo God Bless!
  54. goto end
  55.  
  56. :hlpinst
  57. cls
  58. echo The correct syntax is "install <source: target:>"
  59. echo INSTALLATION ABORTED!
  60. goto end
  61.  
  62. :ok2
  63. rename inven.dbf old.dbf
  64. rename inven.dbt old.dbt
  65. md sample
  66. copy old.* %2\icp\sample\old.*
  67. del *.bat
  68. del *.dbf
  69. del *.dbt
  70. del *.doc
  71. del *.exe
  72. del *.frm
  73. del *.ntx
  74. del config.sys
  75. %1unpack
  76. copy %2\icp\sample\old.* %2\icp\old.*
  77. del %2\icp\sample\old.*
  78. copy inven.dbf %2\icp\sample
  79. transfer
  80. del old.*
  81. del transfer.exe
  82. goto ok3
  83.  
  84. :end